Tables [dbo].[FinancialEntityDueTo]
Properties
PropertyValue
Row Count0
Created10:31:22 AM Tuesday, March 02, 2010
Last Modified11:40:02 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_FinancialEntityDueTo: FinancialEntityDueToKeyFinancialEntityDueToKeyuniqueidentifier16
No
FromFinancialEntityKeyuniqueidentifier16
No
ToFinancialEntityKeyuniqueidentifier16
No
FromFinEntityGLAccountKeyuniqueidentifier16
No
ToFinEntityGLAccountKeyuniqueidentifier16
No
MarkedForDeleteOndatetime8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_FinancialEntityDueTo: FinancialEntityDueToKeyPK_FinancialEntityDueToFinancialEntityDueToKey
Yes
SQL Script
CREATE TABLE [dbo].[FinancialEntityDueTo]
(
[FinancialEntityDueToKey] [uniqueidentifier] NOT NULL,
[FromFinancialEntityKey] [uniqueidentifier] NOT NULL,
[ToFinancialEntityKey] [uniqueidentifier] NOT NULL,
[FromFinEntityGLAccountKey] [uniqueidentifier] NOT NULL,
[ToFinEntityGLAccountKey] [uniqueidentifier] NOT NULL,
[MarkedForDeleteOn] [datetime] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[FinancialEntityDueTo] ADD CONSTRAINT [PK_FinancialEntityDueTo] PRIMARY KEY CLUSTERED ([FinancialEntityDueToKey]) ON [PRIMARY]
GO
Uses
Used By